home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form2
- Caption = "Form2"
- ClientHeight = 1875
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 2835
- Height = 2565
- Left = 1080
- LinkTopic = "Form2"
- ScaleHeight = 1875
- ScaleWidth = 2835
- Top = 885
- Width = 2955
- Begin VB.Menu mPopup
- Caption = "Popup"
- Begin VB.Menu mOpen
- Caption = "&Open"
- End
- Begin VB.Menu mspe1
- Caption = "-"
- End
- Begin VB.Menu mOpt1
- Caption = "Option 1"
- End
- Begin VB.Menu mOpt2
- Caption = "Option 2"
- End
- Begin VB.Menu mOpt3
- Caption = "Option 3"
- End
- Begin VB.Menu mSep2
- Caption = "-"
- End
- Begin VB.Menu mRemove
- Caption = "&Remove"
- End
- End
- Attribute VB_Name = "Form2"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Sub GeneralMessage()
- MsgBox "Menu functionality is contained in Form2"
- End Sub
- Private Sub Form_Load()
- End Sub
- Private Sub mOpen_Click()
- Form1.Show
- End Sub
- Private Sub mOpt1_Click()
- GeneralMessage
- End Sub
- Private Sub mOpt2_Click()
- GeneralMessage
- End Sub
- Private Sub mOpt3_Click()
- GeneralMessage
- End Sub
- Private Sub mPopup_Click()
- End Sub
- Private Sub mRemove_Click()
- Unload Form1
- End Sub
-